home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / AppleScript / Documentation / Apple Event Registry / Word Services Suite 1.0.4 / WSI Library Source / Key.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-12  |  555 b   |  20 lines  |  [TEXT/KAHL]

  1. /* Key.h
  2.  * Ascii codes for various keys
  3.  * Copyright © 1991 Working Software Inc.  All Rights Reserved.
  4.  * 21 Feb 91 Mike Crawford
  5.  */
  6.  
  7. /* The ascii codes for various keys are listed in IM 1 p. 248 */
  8.  
  9. #define enterKey    ((char)0x03)
  10. #define tabKey        ((char)0x09)    /* TAB key */
  11. #define retKey        ((char)0x0D)    /* Return key */
  12. #define    escKey        ((char)0x1B)    /* Escape key */
  13.  
  14. #define    leftArrow    ((char)0x1C)
  15. #define    rightArrow    ((char)0x1D)
  16. #define    upArrow        ((char)0x1E)
  17. #define    downArrow    ((char)0x1F)
  18. #define backSpace    ((char)0x08)
  19. #define deleteKey    ((char)0x7F)
  20.